Document Solutions for Imaging
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Imaging Namespace / GcBitmap Class / Load Method / Load(String,Int32,Nullable<Rectangle>) Method
The file path to the image.
Index of an image frame to read, pass 0 for image formats not supporting multiple frames.
Clipping rectangle of the image to be loaded.

In This Topic
    Load(String,Int32,Nullable<Rectangle>) Method
    In This Topic
    Loads the image from a file. JPEG, PNG, WEBP, GIF, BMP, TIFF, ICO, JPEG 2000 formats are supported.
    Syntax
    'Declaration
     
    Public Overloads Sub Load( _
       ByVal path As System.String, _
       Optional ByVal frameIndex As System.Integer, _
       Optional ByVal imageRect As System.Nullable(Of Rectangle) _
    ) 
    public void Load( 
       System.string path,
       System.int frameIndex,
       System.Nullable<Rectangle> imageRect
    )

    Parameters

    path
    The file path to the image.
    frameIndex
    Index of an image frame to read, pass 0 for image formats not supporting multiple frames.
    imageRect
    Clipping rectangle of the image to be loaded.
    See Also